home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1992 June: ROMin Holiday / ADC Developer CD (1992-06) (''ROMin Holiday'')_iso / Developer Connection - 06-1992.iso / Periodicals / develop / develop 10 code / LWFontUtility / UTILInstall / Std.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-04-08  |  871 b   |  39 lines  |  [TEXT/MPS ]

  1. /****************************************************************************************
  2.  
  3. std.h - Standard includes for UTILInstall
  4.  
  5. Written by Bryan K. Ressler (Beaker), 10/8/91
  6.  
  7. ****************************************************************************************/
  8.  
  9. #if defined(MAKEDUMP) || defined(SLOWBUILD)
  10.  
  11.     #include <Errors.h>        /* All the Macintosh includes we need (and then some) */
  12.     #include <Memory.h>
  13.     #include <OSUtils.h>
  14.     #include <QuickDraw.h>
  15.     #include <Fonts.h>
  16.     #include <Windows.h>
  17.     #include <Packages.h>
  18.     #include <Desk.h>
  19.     #include <Printing.h>
  20.     #include <FixMath.h>
  21.     #include <Resources.h>
  22.     #include <StdLib.h>
  23.     #include <String.h>
  24.     #include <Strings.h>
  25.     #include <ToolUtils.h>
  26.     #include <Types.h>
  27.  
  28.     #include <stdarg.h>
  29.     #include <stdio.h>
  30.  
  31.     #if defined(MAKEDUMP)
  32.         #pragma dump "std.precomp"
  33.     #endif
  34.  
  35. #else
  36.  
  37.     #pragma load "std.precomp"
  38.  
  39. #endif